{% extends "base.html" %} {% block title %}Manage Patients - Admin Panel{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Overview of all registered patients in the system
| # | Patient | Contact Info | Registered Date | Actions |
|---|---|---|---|---|
| {{ loop.index }} |
{{ patient_user.name }}ID: {{ patient_user.id }} |
{{ patient_user.email }}
{{ patient_user.phone|format_phone }}
|
{{ patient_user.created_at.strftime('%d %b, %Y') }}
|
Details |
Registered patients will appear here.